Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-dev): bump the build-packages group with 2 updates #317

Merged
merged 1 commit into from
Aug 7, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 1, 2023

Bumps the build-packages group with 2 updates: core-js and esbuild.

Updates core-js from 3.31.1 to 3.32.0

Changelog

Sourced from core-js's changelog.

3.32.0 - 2023.07.28
Commits
  • c252192 3.32.0
  • 34c2a63 docs changes
  • b2b5af1 disable forced replacement for f16 features (stage 3)
  • 09c96b2 detect and fix early Set methods implementations
  • ce0913b fix incorrect Symbol.{ dispose, asyncDispose } descriptors from NodeJS 20.4...
  • d9b3fdc fix a Chromium 117 bug in value argument of `URLSearchParams.prototype.{ has,...
  • ce17c76 fix forced polyfilling of some iterator helpers that should return wrapped it...
  • 4c56a00 enforce Map.groupBy polyfill in the pure version
  • 19ff49d Iterator is not constructible from the active function object (works as an ...
  • 6b967f8 forced installation of Math.f16round
  • Additional commits viewable in compare view

Updates esbuild from 0.18.14 to 0.18.17

Release notes

Sourced from esbuild's releases.

v0.18.17

  • Support An+B syntax and :nth-*() pseudo-classes in CSS

    This adds support for the :nth-child(), :nth-last-child(), :nth-of-type(), and :nth-last-of-type() pseudo-classes to esbuild, which has the following consequences:

    • The An+B syntax is now parsed, so parse errors are now reported
    • An+B values inside these pseudo-classes are now pretty-printed (e.g. a leading + will be stripped because it's not in the AST)
    • When minification is enabled, An+B values are reduced to equivalent but shorter forms (e.g. 2n+0 => 2n, 2n+1 => odd)
    • Local CSS names in an of clause are now detected (e.g. in :nth-child(2n of :local(.foo)) the name foo is now renamed)
    /* Original code */
    .foo:nth-child(+2n+1 of :local(.bar)) {
      color: red;
    }
    /* Old output (with --loader=local-css) */
    .stdin_foo:nth-child(+2n + 1 of :local(.bar)) {
    color: red;
    }
    /* New output (with --loader=local-css) */
    .stdin_foo:nth-child(2n+1 of .stdin_bar) {
    color: red;
    }

  • Adjust CSS nesting parser for IE7 hacks (#3272)

    This fixes a regression with esbuild's treatment of IE7 hacks in CSS. CSS nesting allows selectors to be used where declarations are expected. There's an IE7 hack where prefixing a declaration with a * causes that declaration to only be applied in IE7 due to a bug in IE7's CSS parser. However, it's valid for nested CSS selectors to start with *. So esbuild was incorrectly parsing these declarations and anything following it up until the next { as a selector for a nested CSS rule. This release changes esbuild's parser to terminate the parsing of selectors for nested CSS rules when a ; is encountered to fix this edge case:

    /* Original code */
    .item {
      *width: 100%;
      height: 1px;
    }
    /* Old output */
    .item {
    *width: 100%; height: 1px; {
    }
    }
    /* New output */
    .item {
    *width: 100%;
    height: 1px;
    }

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.18.17

  • Support An+B syntax and :nth-*() pseudo-classes in CSS

    This adds support for the :nth-child(), :nth-last-child(), :nth-of-type(), and :nth-last-of-type() pseudo-classes to esbuild, which has the following consequences:

    • The An+B syntax is now parsed, so parse errors are now reported
    • An+B values inside these pseudo-classes are now pretty-printed (e.g. a leading + will be stripped because it's not in the AST)
    • When minification is enabled, An+B values are reduced to equivalent but shorter forms (e.g. 2n+0 => 2n, 2n+1 => odd)
    • Local CSS names in an of clause are now detected (e.g. in :nth-child(2n of :local(.foo)) the name foo is now renamed)
    /* Original code */
    .foo:nth-child(+2n+1 of :local(.bar)) {
      color: red;
    }
    /* Old output (with --loader=local-css) */
    .stdin_foo:nth-child(+2n + 1 of :local(.bar)) {
    color: red;
    }
    /* New output (with --loader=local-css) */
    .stdin_foo:nth-child(2n+1 of .stdin_bar) {
    color: red;
    }

  • Adjust CSS nesting parser for IE7 hacks (#3272)

    This fixes a regression with esbuild's treatment of IE7 hacks in CSS. CSS nesting allows selectors to be used where declarations are expected. There's an IE7 hack where prefixing a declaration with a * causes that declaration to only be applied in IE7 due to a bug in IE7's CSS parser. However, it's valid for nested CSS selectors to start with *. So esbuild was incorrectly parsing these declarations and anything following it up until the next { as a selector for a nested CSS rule. This release changes esbuild's parser to terminate the parsing of selectors for nested CSS rules when a ; is encountered to fix this edge case:

    /* Original code */
    .item {
      *width: 100%;
      height: 1px;
    }
    /* Old output */
    .item {
    *width: 100%; height: 1px; {
    }
    }
    /* New output */
    .item {
    *width: 100%;
    height: 1px;
    }

... (truncated)

Commits
  • 1771c71 publish 0.18.17 to npm
  • 63de9e5 css: support An+B and :nth-*() syntax
  • 517fd5c fix #3272: account for IE7 hacks in nested CSS
  • 78eefe1 css: add source map entries for generated js names
  • 8abb666 fix typo correction for generated export names
  • abf1dc2 fix typos for import errors as well as warnings
  • af2bc58 fix #3271: bad import-is-undefined warning in ts
  • 2292036 publish 0.18.16 to npm
  • 64f97bd fix #3266: support --analyze with --serve
  • d645903 fix #3265: allow whitespace inside of :is()
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually

Bumps the build-packages group with 2 updates: [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) and [esbuild](https://github.com/evanw/esbuild).


Updates `core-js` from 3.31.1 to 3.32.0
- [Release notes](https://github.com/zloirock/core-js/releases)
- [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zloirock/core-js/commits/v3.32.0/packages/core-js)

Updates `esbuild` from 0.18.14 to 0.18.17
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.18.14...v0.18.17)

---
updated-dependencies:
- dependency-name: core-js
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: build-packages
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: build-packages
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 1, 2023
@dependabot dependabot bot requested a review from ksol August 1, 2023 19:03
@ksol ksol enabled auto-merge August 7, 2023 08:22
@ksol ksol merged commit 112e836 into master Aug 7, 2023
4 checks passed
@ksol ksol deleted the dependabot/npm_and_yarn/build-packages-60406db6c6 branch August 7, 2023 08:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant